1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
import { getLayout } from '@components/Layouts/Layout';
import PostPreview from '@components/PostPreview/PostPreview';
import { t } from '@lingui/macro';
import { NextPageWithLayout } from '@ts/types/app';
import { SubjectProps, ThematicPreview } from '@ts/types/taxonomies';
import { loadTranslation } from '@utils/helpers/i18n';
import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next';
import { ParsedUrlQuery } from 'querystring';
import styles from '@styles/pages/Page.module.scss';
import {
getAllSubjectsSlug,
getSubjectBySlug,
} from '@services/graphql/queries';
import PostHeader from '@components/PostHeader/PostHeader';
import { ArticleMeta } from '@ts/types/articles';
import { RelatedThematics, ToC, TopicsList } from '@components/Widgets';
import { useRef } from 'react';
import Head from 'next/head';
import Sidebar from '@components/Sidebar/Sidebar';
const Subject: NextPageWithLayout<SubjectProps> = ({ subject }) => {
const relatedThematics = useRef<ThematicPreview[]>([]);
const updateRelatedThematics = (newThematics: ThematicPreview[]) => {
newThematics.forEach((thematic) => {
const thematicIndex = relatedThematics.current.findIndex(
(relatedThematic) => relatedThematic.id === thematic.id
);
const hasThematic = thematicIndex === -1 ? false : true;
if (!hasThematic) relatedThematics.current.push(thematic);
});
};
const getPostsList = () => {
return [...subject.posts].reverse().map((post) => {
updateRelatedThematics(post.thematics);
return (
<li key={post.id} className={styles.item}>
<PostPreview post={post} titleLevel={3} />
</li>
);
});
};
const meta: ArticleMeta = {
dates: subject.dates,
website: subject.officialWebsite,
};
return (
<>
<Head>
<title>{subject.seo.title}</title>
<meta name="description" content={subject.seo.metaDesc} />
</Head>
<article
className={`${styles.article} ${styles['article--no-comments']}`}
>
<PostHeader
cover={subject.featuredImage}
intro={subject.intro}
meta={meta}
title={subject.title}
/>
<Sidebar position="left">
<ToC />
</Sidebar>
<div className={styles.body}>
<div dangerouslySetInnerHTML={{ __html: subject.content }}></div>
{subject.posts.length > 0 && (
<section className={styles.section}>
<h2>{t`All posts in ${subject.title}`}</h2>
<ol className={styles.list}>{getPostsList()}</ol>
</section>
)}
</div>
<Sidebar position="right">
<RelatedThematics thematics={relatedThematics.current} />
<TopicsList title={t`Other topics`} />
</Sidebar>
</article>
</>
);
};
Subject.getLayout = getLayout;
interface PostParams extends ParsedUrlQuery {
slug: string;
}
export const getStaticProps: GetStaticProps = async (
context: GetStaticPropsContext
) => {
const translation = await loadTranslation(
context.locale!,
process.env.NODE_ENV === 'production'
);
const { slug } = context.params as PostParams;
const subject = await getSubjectBySlug(slug);
const breadcrumbTitle = subject.title;
return {
props: {
breadcrumbTitle,
subject,
translation,
},
};
};
export const getStaticPaths: GetStaticPaths = async () => {
const allSlugs = await getAllSubjectsSlug();
return {
paths: allSlugs.map((post) => `/sujet/${post.slug}`),
fallback: true,
};
};
export default Subject;
|